home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue62
/
Construc
/
BIOLIFE.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-09-06
|
299 b
|
19 lines
program BIOLIFE;
{$APPTYPE CONSOLE}
uses
DBTables, TableXML;
var
Table: TTable;
begin
Table := TTable.Create(nil);
try
Table.DatabaseName := 'DBDEMOS';
Table.TableName := 'BIOLIFE.DB';
DataSetXML(Table,'D:\BIOLIFE.XML');
finally
Table.Free;
end;
end.